home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 January / PC Plus Super CD No55a (PCP-147A-1-99) (Disc 1) (1998).iso / full / delphi1 / Disk15 / FORMAT.PAK / FORMAT.DPR < prev    next >
Encoding:
Text File  |  1995-08-24  |  257 b   |  15 lines

  1. program Format;
  2.  
  3. uses
  4.   Forms,
  5.   Floats in 'FLOATS.PAS' {FloatForm},
  6.   Dates in 'DATES.PAS' {DateForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TFloatForm, FloatForm);
  12.   Application.CreateForm(TDateForm, DateForm);
  13.   Application.Run;
  14. end.
  15.